home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 26.zip
/
BS1 part 26
/
Cando v1.6 disk 2.adf
/
HelpFiles
/
ARexx
< prev
next >
Wrap
Text File
|
1991-10-07
|
3KB
|
172 lines
V- CurrentListenTo |currentlistento|
V- CurrentSpeakTo |currentspeakto|
C- InsertMessagePortList |insertmessageportlist|
C- ListenTo |listento|
V- MessageErrorCode |messageerrorcode|
V- MessageReturned |messagereturned|
C- ReplyARexxWith |replyarexxwith|
C- SendMessage |sendmessage|
C- SpeakTo |speakto|
V- TheMessage |themessage|
[E]
|currentlistento|
WT {ARexxPortName}=CurrentListenTo
PL Returns the "PortName" of the most
PL recent ListenTo.
PL
PT SEE ALSO:
BS ListenTo
ED
|currentspeakto|
WT {ArexxPortName}=CurrentSpeakTo
PL Returns the "PortName" of the most
PL recent SpeakTo.
PL
PT SEE ALSO:
BS SpeakTo
ED
|insertmessageportlist|
WT InsertMessagePortList
PL Types the list of all Public Message Ports
PL into the current document. Caution: Not
PL all ports listed are valid ARexx Ports.
PL
PT SEE ALSO:
BS SpeakTo
ED
|listento|
WT ListenTo {ARexxPortName}
PL Specifies the name of the "PortName" for
PL receiving messages.
PL
PT SEE ALSO:
BS SpeakTo
PT ,
BS CurrentListenTo
PL and..
PT ..
BS InsertMessagePortList
ED
|messageerrorcode|
WT {ErrorCode}=MessageErrorCode
PL The error code which was returned from the
PT last
BS SendMessage
PL command used. If this was
PL a call to another CanDo application, that
PT application replied with
BS ReplyARexxWith
PL .
PL
PT SEE ALSO:
BS MessageReturned
PT .
ED
|messagereturned|
WT {Message}=MessageReturned
PL The message which was returned from the
PT last
BS SendMessage
PL command used. If this was
PL a call to another CanDo application, that
PT application replied with
BS ReplyARexxWith
PL .
PL
PT SEE ALSO:
BS MessageErrorCode
PT .
ED
|replyarexxwith|
WT ReplyARexxWith <flags> [,{Message or ErrorCode}]
PL This command is used to reply ARexx messages
PL sent to this CanDo application. This command
PL can only be used by a script that is used
PL by an ARexx Object.
PL
PT SEE ALSO:
BS SendMessage
PT and Next Page.
NP replyarexxwith2
ED
|replyarexxwith2|
WT ReplyARexxWith <flags> [,{Message or ErrorCode}]
PT Flag
BS MessageErrorCode
PT
BS MessageReturned
PL
PL ---- ---------------- ---------------
PL NOERROR 0 nothing
PL ERROR 5 or {ErrorCode} nothing
PL MESSAGE 0 nothing or {Message}
PP replyarexxwith
ED
|sendmessage|
WT SendMessage {Message} [,<flags>]
PL Sends an ARexx message to the port specified
PT by the
BS SpeakTo
PL command. If no flags are
PL given, then the command will wait for a
PL reply before continuing. The reply will be
PT found in
BS MessageReturned
PL .
PL SEE ALSO: Next Page for flags
NP sendmessage2
ED
|sendmessage2|
WT SendMessage {Message} [,<flags>]
PL If NORESULTS is specified, then no message
PL will be returned, but the script will wait
PT for a reply, to get the
BS MessageErrorCode
PL .
PL If ASYNC is used instead, then the script
PL will not even wait for the reply.
PT SEE ALSO:
BS ReplyARexxWith
PT .
PP sendmessage
ED
|speakto|
WT SpeakTo {ARexxPortName}
PL Tells CanDo the name of the ARexx
PL port to send messages to.
PL
PT SEE ALSO:
BS ListenTo
PT ,
BS CurrentSpeakTo
PL ,
PT
BS SendMessage
PL and..
PT ..
BS InsertMessagePortList
ED
|themessage|
WT {string}=TheMessage
PL This is the last message received by an
PL ARexx Object.
PL
PT SEE ALSO:
BS ListenTo
PT and
BS ReplyARexxWith
PL .
ED